From a734a9bca1200164e9db6249a282f5a6fab96976 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Fri, 20 Jun 2008 11:00:57 +0000 Subject: [PATCH] Seal GtkCellRendererText. * gtk/gtkcellrenderertext.h: seal all member fields (all of them were already marked as private). svn path=/trunk/; revision=20523 --- gtk/gtkcellrenderertext.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/gtk/gtkcellrenderertext.h b/gtk/gtkcellrenderertext.h index b5a34ba1fb..0d37552470 100644 --- a/gtk/gtkcellrenderertext.h +++ b/gtk/gtkcellrenderertext.h @@ -46,36 +46,36 @@ struct _GtkCellRendererText GtkCellRenderer parent; /*< private >*/ - gchar *text; - PangoFontDescription *font; - gdouble font_scale; - PangoColor foreground; - PangoColor background; + gchar *GSEAL (text); + PangoFontDescription *GSEAL (font); + gdouble GSEAL (font_scale); + PangoColor GSEAL (foreground); + PangoColor GSEAL (background); - PangoAttrList *extra_attrs; + PangoAttrList *GSEAL (extra_attrs); - PangoUnderline underline_style; + PangoUnderline GSEAL (underline_style); - gint rise; - gint fixed_height_rows; + gint GSEAL (rise); + gint GSEAL (fixed_height_rows); - guint strikethrough : 1; + guint GSEAL (strikethrough : 1); - guint editable : 1; + guint GSEAL (editable : 1); - guint scale_set : 1; + guint GSEAL (scale_set : 1); - guint foreground_set : 1; - guint background_set : 1; + guint GSEAL (foreground_set : 1); + guint GSEAL (background_set : 1); - guint underline_set : 1; + guint GSEAL (underline_set : 1); - guint rise_set : 1; + guint GSEAL (rise_set : 1); - guint strikethrough_set : 1; + guint GSEAL (strikethrough_set : 1); - guint editable_set : 1; - guint calc_fixed_height : 1; + guint GSEAL (editable_set : 1); + guint GSEAL (calc_fixed_height : 1); }; struct _GtkCellRendererTextClass -- 2.30.2